home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo
- echo
- echo This will print the README.1ST (3 pages), RECIPES.DOC (2 pages),
- echo MCFORMAT.DOC (2 pages) and MCOOK.MAN (19 pages) document files.
- echo
- echo If you want to print the MCOOK.HLP file for use as a handy command reference
- echo while you are working in MicroCook, type: COPY MCOOK.HLP PRN
- echo at the DOS prompt from the directory where the MicroCook files are.
- echo
- echo If you are printing with a continues feed printer (Dot-Matrix),
- echo forward the paper so the page perforation is about 1 inch above the print head.
- echo
- echo Press any key to start printing, or CTRL-C to Cancel.
- pause>nul
- echo Printing README.1ST . . . . .
- copy readme.1st prn >nul
- echo Printing RECIPES.DOC. . . . . .
- copy recipes.doc prn >nul
- echo Printing MCFORMAT.DOC . . . . . .
- copy mcformat.doc prn >nul
- echo Printing MCOOK.MAN . . . . . . . .
- copy mcook.man prn >nul
- echo
- echo DONE!